home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / hydra_snmp.nasl < prev    next >
Text File  |  2005-03-31  |  3KB  |  100 lines

  1. #TRUSTED 0e48bc1e25610e427205ee11684e52fa25c8d60b44c3cf14ebb1a5f92161f85effb8e91d09e11cf351204748d8c01d9232cd2d000ce83e3f3f89e1a1e072d370c7cad88d5c60a1628a6d4866ccd62751f8cc6088d2824779d4507afb7dd8d2ac17805eaeb0788550f2fba90ad71c4856d1154f51ca69b5c7fba6e4dc64da11169d065d41d3ffc1a0827a4a54b3b3c5ff50540dd188b9275b1ce137d40cd08d37e3f79f62e7b2c502d0db5240e9b5df07180cc2f8a6f53fdbc6b14a669ca8adb2c746f53f011b7b60ca5de87a8f58fbd1cadd0d6fa700e5fe960d2cee7c6cb547c77d3de74da63f9a65f3547c246068f1780233057cdeda40b930abdcbc206d593365a6ac984cf35f981696467e44570fbd9336bf9f9070fdbb9fa29fd1431d091a31d170bd896983976e8cd57212593daacfb7d62d0081f951f6d5ec25ea5efa320895985be78171baa58ced8a48a61658ee0d0ba9890c7ec8c0f08201ad8d58de0b9ecc05b793dcfd4089ec2d4533857253dc65717f8bf3f9391dd8304a676590092606fe7b1d735b9d73c5f5acb74ec5d8e762db7c73f8a33377e5c25fea9ae3a556c8e8d95256351f292d58659d1a1856bf8205e3e1740ea75f5dfd428ae7e28a76d6c6380b3329e2aa5c35063ea1ffad439c463fc5c4ae533cac005ea892b6f8d6488151707af12cc0ec2cb1c4b5b1bcc27c5bfa10e873da0a2a40dcdf2e
  2. #
  3. # This script was written by Michel Arboi <arboi@alussinan.org>
  4. #
  5. # GPL
  6. #
  7.  
  8. if (! defined_func("script_get_preference_file_location")) exit(0);
  9. if (! find_in_path("hydra") ) exit(0);
  10.  
  11.  
  12. if(description)
  13. {
  14.  script_id(15886);
  15.  script_version ("1.2");
  16.  name["english"] = "Hydra: SNMP";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. This plugin runs Hydra to find SNMP passwords by brute force.
  21.  
  22. See the section 'plugins options' to configure it
  23. ";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Brute force SNMP authentication with Hydra";
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_ATTACK);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  33.  script_family(english:"Brute force attacks");
  34.  script_require_keys("Secret/hydra/passwords_file");
  35.  script_require_udp_ports(161, 32789);
  36.  script_dependencies("hydra_options.nasl", "snmp_default_communities.nasl");
  37.  exit(0);
  38. }
  39.  
  40. #
  41.  
  42. throrough = get_kb_item("global_settings/thorough_tests");
  43. if ("yes" >!< throrough) exit(0);
  44. passwd = get_kb_item("Secret/hydra/passwords_file");
  45. if (passwd == NULL) exit(0);
  46.  
  47. port = get_kb_item("SNMP/port");
  48. if (port) exit(0);
  49. # Yes! We exit if we know the port, and thus some common community name
  50. port = 161;
  51. if (! get_udp_port_state(port)) exit(0);
  52.  
  53. timeout = get_kb_item("/tmp/hydra/timeout"); timeout = int(timeout);
  54. tasks = get_kb_item("/tmp/hydra/tasks"); task = int(tasks);
  55.  
  56. empty = get_kb_item("/tmp/hydra/empty_password");
  57. exit_asap = get_kb_item("/tmp/hydra/exit_ASAP");
  58.  
  59. i = 0;
  60. argv[i++] = "hydra";
  61. argv[i++] = "-s"; argv[i++] = port;
  62. argv[i++] = "-P"; argv[i++] = passwd;
  63. if (empty)
  64. if (s)
  65. {
  66.   argv[i++] = "-e"; argv[i++] = "n";
  67. }
  68. if (exit_asap) argv[i++] = "-f";
  69.  
  70. if (timeout > 0)
  71. {
  72.   argv[i++] = "-w";
  73.   argv[i++] = timeout;
  74. }
  75. if (tasks > 0)
  76. {
  77.   argv[i++] = "-t";
  78.   argv[i++] = tasks;
  79. }
  80.  
  81. argv[i++] = get_host_ip();
  82. argv[i++] = "snmp";
  83.  
  84. report = "";
  85. results = pread(cmd: "hydra", argv: argv, nice: 5);
  86. foreach line (split(results))
  87. {
  88.   v = eregmatch(string: line, pattern: 'host:.*(login: *.*)? password: *(.*)$');
  89.   if (! isnull(v))
  90.   {
  91.     p = chomp(v[2]);
  92.     report = strcat(report, p, '\n');
  93.     set_kb_item(name: 'Hydra/snmp/'+port, value: p);
  94.   }
  95. }
  96.  
  97. if (report)
  98.   security_hole(port: port, 
  99.     data: 'Hydra was able to break the following SNMP communities:\n' + report);
  100.